home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / manpages / man-addons.el < prev    next >
Lisp/Scheme  |  2009-05-01  |  2KB  |  51 lines

  1. ;;; man-addons.el - some helpful additions for browsing man pages.
  2. ;;;
  3. ;;; Copyright (c) 1998-2001 Karl M. Hegbloom <karlheg@hegbloom.net>
  4. ;;; Released under the terms of the GPL version >= 2.0
  5. ;;;
  6. ;;; See: /usr/share/common-licences/GPL-2
  7. ;;;
  8. ;;; The usual instructions apply...  Place this file in a directory on
  9. ;;; your `load-path' and then add (require 'man-addons) to your
  10. ;;; `user-init-file'.
  11. ;;;
  12. ;;; This is tested in XEmacs 21 with both the native XEmacs man.el and
  13. ;;; one I ported from GNU Emacs.  I hope it works equally well for GNU
  14. ;;; Emacs users.
  15. ;;;
  16. ;;; After loading this file, when you have man page source files
  17. ;;; visible from a `dired' buffer, you can push `l' when the cursor is
  18. ;;; over them, and preview the page in man mode.  I find this very
  19. ;;; helpful while editting manual pages!
  20. ;;;
  21.  
  22. ;;;###autoload
  23. (defun dired-man-locally ()
  24.   "From a dired buffer, view the man page file at point, using \"man
  25.   -l file\"."
  26.   (interactive)
  27.   (if (= 1 (function-max-args #'manual-entry))
  28.       (manual-entry (concat (dired-get-filename) " -l"))
  29.     (manual-entry (dired-get-filename) "-l")))
  30.  
  31. ;;;###autoload
  32. (add-hook 'dired-setup-keys-hook
  33.       #'(lambda ()
  34.           (define-key dired-mode-map [(?l)] #'dired-man-locally)))
  35.  
  36. (require 'thingatpt)
  37.  
  38. ;;;###autoload
  39. (defun man-locally-at-point ()
  40.   "From any buffer, view the man page file at point, using \"man -l
  41.   file\".  This is useful when you use `view-file' to visit one of the
  42.   .list files in /var/lib/dpkg/info -- put the cursor over a man page
  43.   listed there, and use `M-x man-locally-at-point' to view it."
  44.   (interactive)
  45.   (let ((manpage (thing-at-point 'filename)))
  46.     (if (= 1 (function-max-args #'manual-entry))
  47.         (manual-entry (concat manpage " -l"))
  48.       (manual-entry manpage "-l"))))
  49.  
  50. (provide 'man-addons)
  51.